home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 4_3.lha / 4_3 / 4_3a.c next >
Text File  |  1993-08-08  |  338b  |  17 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. / print hello name
  6. include <stream.h>
  7. include <error.h>
  8.  
  9. nt main(int argc, char **argv)
  10.  
  11.    if (argc == 2)
  12. cout << "Hello, " << argv[1] << "\n";
  13.    else
  14. error("usage: hello name");
  15.    return 0;
  16.  
  17.